home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 072 (1988-11-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 072 (1988-11-15)(Ossowski, Stefan)(DE)(PD).adf / Pcopy / chip.c < prev    next >
C/C++ Source or Header  |  1988-08-14  |  3KB  |  143 lines

  1. #include "pcopy.h"
  2.  
  3. /* Single plane "OFF" image */
  4.  
  5. USHORT OFFData[]={
  6.   0xffff,0xffff,0xffff,
  7.   0xc000,0x0000,0x0003,
  8.   0xc07e,0x1ff9,0xff83,
  9.   0xc0c3,0x0c18,0xc183,
  10.   0xc181,0x8c00,0xc003,
  11.   0xc181,0x8f80,0xf803,
  12.   0xc181,0x8c00,0xc003,
  13.   0xc0c3,0x0c00,0xc003,
  14.   0xc07e,0x1e01,0xe003,
  15.   0xc000,0x0000,0x0003,
  16.   0xffff,0xffff,0xffff
  17. };
  18.  
  19. /* Double plane "ON" image */
  20.  
  21. USHORT ONData[]={
  22.   0xffff,0xffff,0xffff,
  23.   0xc000,0x0000,0x0003,
  24.   0xc003,0xf038,0x3003,
  25.   0xc006,0x183c,0x3003,
  26.   0xc00c,0x0c36,0x3003,
  27.   0xc00c,0x0c33,0x3003,
  28.   0xc00c,0x0c31,0xb003,
  29.   0xc006,0x1830,0xf003,
  30.   0xc003,0xf030,0x7003,
  31.   0xc000,0x0000,0x0003,
  32.   0xffff,0xffff,0xffff,
  33.  
  34.   0x0000,0x0000,0x0000,
  35.   0x0000,0x0000,0x0000,
  36.   0x0003,0xf038,0x3000,
  37.   0x0006,0x183c,0x3000,
  38.   0x000c,0x0c36,0x3000,
  39.   0x000c,0x0c33,0x3000,
  40.   0x000c,0x0c31,0xb000,
  41.   0x0006,0x1830,0xf000,
  42.   0x0003,0xf030,0x7000,
  43.   0x0000,0x0000,0x0000,
  44.   0x0000,0x0000,0x0000,
  45. };
  46.  
  47. /* Single plane "->" image */
  48.  
  49. USHORT ARRData[]={
  50.   0xffff,0xffff,0xffff,
  51.   0xc000,0x0000,0x0003,
  52.   0xc000,0x0007,0x8003,
  53.   0xc000,0x0003,0xf003,
  54.   0xc1ff,0xffff,0xff03,
  55.   0xc1ff,0xffff,0xffc3,
  56.   0xc1ff,0xffff,0xff03,
  57.   0xc000,0x0003,0xf003,
  58.   0xc000,0x0007,0x8003,
  59.   0xc000,0x0000,0x0003,
  60.   0xffff,0xffff,0xffff
  61. };
  62.  
  63. /* Single plane "<-" image */
  64.  
  65. USHORT ARLData[]={
  66.   0xffff,0xffff,0xffff,
  67.   0xc000,0x0000,0x0003,
  68.   0xc001,0xe000,0x0003,
  69.   0xc00f,0xc000,0x0003,
  70.   0xc0ff,0xffff,0xff83,
  71.   0xc3ff,0xffff,0xff83,
  72.   0xc0ff,0xffff,0xff83,
  73.   0xc00f,0xc000,0x0003,
  74.   0xc001,0xe000,0x0003,
  75.   0xc000,0x0000,0x0003,
  76.   0xffff,0xffff,0xffff
  77. };
  78.  
  79. /* Double plane Exclamation image */ 
  80.  
  81. USHORT EclaData[]={
  82.   0x007f,0xfe00,
  83.   0x07ff,0xffe0,
  84.   0x1fff,0xfff8,
  85.   0x7fff,0xfffe,
  86.   0xffff,0xffff,
  87.   0xffff,0xffff,
  88.   0xffff,0xffff,
  89.   0x7fff,0xfffe,
  90.   0x7fff,0xfffe,
  91.   0x3fff,0xfffc,
  92.   0x1fff,0xfff8,
  93.   0x07ff,0xffe0,
  94.   0x01ff,0xff80,
  95.   0x007f,0xfe00,
  96.   0x001f,0xf800,
  97.   0x0003,0xc000,
  98.   0x0000,0x0000,
  99.   0x0007,0xe000,
  100.   0x003f,0xfc00,
  101.   0x007f,0xfe00,
  102.   0x00ff,0xff00,
  103.   0x007f,0xfe00,
  104.   0x003f,0xfc00,
  105.   0x0007,0xe000,
  106.  
  107.   0x007f,0xfe00,
  108.   0x07ff,0xffe0,
  109.   0x1fff,0xfff8,
  110.   0x7fff,0xfffe,
  111.   0xffff,0xffff,
  112.   0xffff,0xffff,
  113.   0xffff,0xffff,
  114.   0x7fff,0xfffe,
  115.   0x7fff,0xfffe,
  116.   0x3fff,0xfffc,
  117.   0x1fff,0xfff8,
  118.   0x07ff,0xffe0,
  119.   0x01ff,0xff80,
  120.   0x007f,0xfe00,
  121.   0x001f,0xf800,
  122.   0x0003,0xc000,
  123.   0x0000,0x0000,
  124.   0x0007,0xe000,
  125.   0x003f,0xfc00,
  126.   0x007f,0xfe00,
  127.   0x00ff,0xff00,
  128.   0x007f,0xfe00,
  129.   0x003f,0xfc00,
  130.   0x0007,0xe000,
  131. };
  132.  
  133. /*  Kind of block wave  */
  134.  
  135. UBYTE SoundData[]={
  136.    100,  120,   110,   80,   100,  100,   127,   90,    50,    0,
  137.   -100, -120,  -110,  -80,  -100, -100,  -127,  -90,   -50,    0
  138. };
  139.  
  140. /* for length determination purposes */
  141.  
  142. UBYTE SoundData1[]={ 0, 0 };
  143.